#include #include #include void czekaj(int czas) { int t = clock(); t += czas; while( clock() < t ){} } int main() { int a, b; printf("Podaj pierwsza liczbe "); scanf("%d", &a); printf("Podaj druga liczbe "); scanf("%d", &b); if(a%2==1) { if(b%2==1) { printf("SUMA TO "); printf("%d", a+b); czekaj(2000); } } return 0; }